Skip to content
Snippets Groups Projects
Commit b1401ed2 authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

Add in dockerfile

parent 5480bfc3
Branches
Tags
No related merge requests found
.git
node_modules
FROM node:latest
WORKDIR /app
COPY package*.json ./
RUN npm install --only=production
COPY . .
RUN npm run build
EXPOSE 8080
CMD [ "npm", "run", "serve" ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment