Files
auth-server/Dockerfile
T
Ratstail91 0bc7cb11f0 Fully tested the remote database
Added configurable hostname for default account email
2024-05-03 09:26:12 +10:00

11 lines
186 B
Docker

FROM node:22-bookworm-slim
WORKDIR "/app"
COPY package*.json /app
RUN npm install --production
COPY . /app
EXPOSE 3200
USER node
ENTRYPOINT ["bash", "-c"]
CMD ["sleep 10 && npm start"]