mirror of
https://github.com/MuXiu1997/traefik-github-oauth-plugin
synced 2025-12-17 18:31:27 +00:00
12 lines
226 B
Docker
12 lines
226 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache ca-certificates && update-ca-certificates
|
|
|
|
COPY traefik-github-oauth-server /app/traefik-github-oauth-server
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT ["/app/traefik-github-oauth-server"]
|