Files
randomgif/Dockerfile
T
Simon Gruber 8615e8b78b init
2026-05-11 08:00:51 +02:00

17 lines
195 B
Docker

FROM node:20-slim
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --production
COPY . .
ENV PORT=8080
ENV HOST=0.0.0.0
ENV ACCESS_SECRET=gif
EXPOSE 8080
CMD ["node", "index.js"]