mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +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
|