webcompile/docker/Dockerfile

9 lines
189 B
Docker
Raw Normal View History

2022-05-14 20:57:21 +01:00
# Filename: Dockerfile
FROM node:18-alpine
WORKDIR /home/midou/git_rep/website/docker
COPY . .
RUN npm install
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "preview", "--", "--host"]