Files
enstrayedapi/Dockerfile

7 lines
96 B
Docker

FROM node:25-alpine
COPY . /app
WORKDIR /app
RUN npm install
ENTRYPOINT [ "node", "index.js" ]