Files
dokku/tests/apps/dockerfile-procfile/Dockerfile
dependabot[bot] a5875f4326 chore(deps): bump node in /tests/apps/dockerfile-procfile
Bumps node from 24-alpine to 25-alpine.

---
updated-dependencies:
- dependency-name: node
  dependency-version: 25-alpine
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-10-17 13:06:21 +00:00

14 lines
152 B
Docker

FROM node:25-alpine
RUN apk add --no-cache bash
EXPOSE 3001/udp
EXPOSE 3000/tcp
EXPOSE 3003
COPY . /app
WORKDIR /app
RUN npm install
CMD npm start