Docker support #19
1 changed files with 17 additions and 0 deletions
17
docker/Dockerfile
Normal file
17
docker/Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
|
FROM node:16.15.0-alpine3.15
|
||||||
|
|
||||||
|
RUN apk add dumb-init
|
||||||
|
|
||||||
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
|
USER botanique
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY --chown=botanique:botanique . .
|
||||||
|
|
||||||
|
RUN npm ci --only=production
|
||||||
|
|
||||||
|
CMD ["dumb-init", "node", "src/index.js"]
|
Loading…
Reference in a new issue