Docker folder for building added

This commit is contained in:
2022-05-14 20:57:21 +01:00
parent 697d5b832f
commit e76a40947b
69 changed files with 6844 additions and 0 deletions

8
docker/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
# 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"]