chore(docker): it-tools docker container

This commit is contained in:
Corentin Thomasset 2023-03-23 18:54:51 +01:00
parent b519cc9574
commit 3bc1f0d1fa
No known key found for this signature in database
GPG key ID: DBD997E935996158
2 changed files with 69 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
# build stage
FROM node:lts-alpine as build-stage
WORKDIR /app
COPY . .
RUN npm install -g pnpm
RUN pnpm i --frozen-lockfile
RUN pnpm build
# production stage
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]