mirror of
https://github.com/pockethost/pockethost.git
synced 2025-05-23 07:16:44 +00:00
13 lines
193 B
Docker
13 lines
193 B
Docker
FROM node:20-alpine3.18
|
|
|
|
RUN apk update
|
|
RUN apk add --no-cache ca-certificates bash
|
|
|
|
RUN adduser -D pockethost
|
|
|
|
RUN echo "pockethost:password" | chpasswd
|
|
|
|
EXPOSE 8090
|
|
|
|
WORKDIR /home/pockethost
|