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
2024-03-20 01:13:05 +01:00

19 lines
202 B
Docker

FROM node:21-alpine
WORKDIR /app
RUN mkdir -p /var/sqlite
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=8000
EXPOSE 8000
CMD ["dist/server/entry.mjs"]