This repository has been archived on 2024-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
reset-sender-v2/Dockerfile

21 lines
222 B
Text
Raw Normal View History

2024-02-23 18:52:12 +01:00
FROM node:21-alpine
WORKDIR /app
RUN mkdir -p /var/sqlite
COPY package.json .
RUN npm install
COPY . .
RUN npm run migrate
RUN npm run build
2024-02-23 19:21:11 +01:00
ENV HOST=0.0.0.0
2024-02-23 19:28:08 +01:00
ENV PORT=8000
2024-02-23 18:52:12 +01:00
EXPOSE 8000
CMD ["dist/server/entry.mjs"]