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

20 lines
222 B
Docker

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
ENV HOST=0.0.0.0
ENV PORT=8000
EXPOSE 8000
CMD ["dist/server/entry.mjs"]