File: webserver.Dockerfile

package info (click to toggle)
simplemonitor 1.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,520 kB
  • sloc: python: 8,725; sh: 258; makefile: 74; javascript: 69
file content (16 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
# >> nginx @ alpine
# -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
FROM nginx:1.15.1-alpine

# >> meta :: labels
LABEL   version_dockerfile="10-07-2018:prod" \
        version_image="nginx:1.15.1-alpine"

# >> package :: install
RUN     apk --no-cache add --update \
            # __ install :: basics
            build-base \
            openssl \
            # __ install :: tools
            bash