mirror of
https://github.com/dokku/dokku.git
synced 2026-07-10 12:36:13 +02:00
Bumps node from 25-alpine to 26-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
183 B
Docker
16 lines
183 B
Docker
FROM node:26-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
|