Dan Helfman fa98ace6bf
All checks were successful
build / build (push) Successful in 31s
Upgrade Alpine.
2025-02-10 20:10:58 -08:00

11 lines
133 B
Docker

FROM alpine:3.21.2
ENV PORT=18888
COPY run.sh /app/
RUN apk add --no-cache netcat-openbsd awake
EXPOSE $PORT
CMD ["/app/run.sh"]