mirror of
https://github.com/caronc/apprise-api.git
synced 2024-12-12 18:00:51 +01:00
9 lines
215 B
Plaintext
9 lines
215 B
Plaintext
# pull official base image
|
|
FROM nginx
|
|
|
|
# Copy our customized NginX configuration (for container usage)
|
|
COPY etc/nginx /etc/nginx/
|
|
|
|
# Copy our static content in place
|
|
COPY apprise_api/static /usr/share/nginx/html/s/
|