mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-21 07:49:34 +01:00
69c1d3e429
Ending quote missing on author email-address
12 lines
285 B
Docker
12 lines
285 B
Docker
FROM nginx:alpine
|
|
|
|
LABEL maintainer="Tom Whiston <tom.whiston@gmail.com>"
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY cert/ /etc/nginx/cert
|
|
COPY bin /usr/local/bin
|
|
RUN apk add --no-cache openssl && \
|
|
/usr/local/bin/install && \
|
|
apk del openssl && \
|
|
rm -rf /var/cache/apk/*
|