webcompile/docker/Dockerfile

9 lines
189 B
Docker
Raw Normal View History

2022-05-15 01:27:21 +05:30
# 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"]