mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 12:12:08 +01:00
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>
17 lines
230 B
Docker
17 lines
230 B
Docker
FROM node:25-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
|
|
|
|
ARG GITHUB_TOKEN=latest
|
|
RUN echo "TOKEN is: $GITHUB_TOKEN"
|
|
|
|
CMD npm start
|