mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 12:18:26 +01:00
21 lines
399 B
Docker
21 lines
399 B
Docker
# docker build -t pproxy .
|
|
# docker run -p 6003:6003 -v ./whitelist.json:/pproxy/whitelist.json:ro pproxy
|
|
|
|
# Base
|
|
FROM node:18-alpine
|
|
|
|
# Install dependencies
|
|
RUN apk add --no-cache git build-base python3
|
|
|
|
# Set Work Directory
|
|
WORKDIR /pproxy
|
|
|
|
# Install dependencies
|
|
# Honestly less effort this way
|
|
RUN yarn add express undici
|
|
|
|
# Copy files
|
|
COPY server.js .
|
|
|
|
# Entrypoint
|
|
CMD [ "node", "server.js" ]
|