-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
16 lines (12 loc) · 724 Bytes
/
Dockerfile
File metadata and controls
16 lines (12 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM nginx:stable-alpine
ARG NOTESNOOK_VERSION=master
COPY ./notesnook/apps/web/build /usr/share/nginx/html
COPY ./notesnook/LICENSE /usr/share/nginx/html/LICENSE
COPY ./default.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
LABEL org.opencontainers.image.authors="APP: streetwriters, Docker Image: Soundofdarkness"
LABEL org.opencontainers.image.url="https://github.com/Soundofdarkness/notesnook-web-docker"
LABEL org.opencontainers.image.source="https://github.com/streetwriters/notesnook/tree/${NOTESNOOK_VERSION}/apps/web"
LABEL org.opencontainers.image.version="${NOTESNOOK_VERSION}"
LABEL org.opencontainers.image.licenses="GPL-3.0-only"
LABEL org.opencontainers.image.description="A build of the Notesnook webapp."