File size: 465 Bytes
252c311 3843518 14e6210 3843518 cb1cf6f 525ac25 3843518 966ca03 59e518f 0ff2061 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM busybox:latest
RUN adduser -D -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
RUN wget https://github.com/Kianmhz/GooseRelayVPN/releases/latest/download/GooseRelayVPN-server-v1.6.0-linux-amd64.tar.gz && \
tar -xzf GooseRelayVPN-server-v1.6.0-linux-amd64.tar.gz --strip-components 1
RUN --mount=type=secret,id=SERVER_CONFIG,mode=0444,required=true \
cp /run/secrets/SERVER_CONFIG server_config.json
CMD ["./goose-server"]
|