Files
dokku/tests/apps/dockerfile/second.Dockerfile
dependabot[bot] b75286807d chore(deps): bump node in /tests/apps/dockerfile
Bumps node from 22-alpine to 23-alpine.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-17 13:34:31 +00:00

16 lines
183 B
Docker

FROM node:23-alpine
RUN apk add --no-cache bash
EXPOSE 3001/udp
EXPOSE 3000/tcp
EXPOSE 3003
COPY . /var/www/html
WORKDIR /var/www/html
RUN npm install
RUN echo hi
CMD npm start