trsstapi / Dockerfile
Twan07's picture
Create Dockerfile
a169e77 verified
raw
history blame
167 Bytes
FROM node:20-alpine
WORKDIR /app
RUN addgroup -S app && adduser -S app -G app
COPY . .
RUN npm install --production
USER app
EXPOSE 3000
CMD ["node", "src/server.js"]