-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Dockerfile
53 lines (37 loc) · 1.34 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
ARG ALPINE_VERSION=3.18.4
FROM alpine:${ALPINE_VERSION} AS builder
ARG BUSYBOX_VERSION=1.36.1
# Install all dependencies required for compiling busybox
RUN apk add gcc musl-dev make perl
# Download busybox sources
RUN wget https://busybox.net/downloads/busybox-${BUSYBOX_VERSION}.tar.bz2 \
&& tar xf busybox-${BUSYBOX_VERSION}.tar.bz2 \
&& mv /busybox-${BUSYBOX_VERSION} /busybox
WORKDIR /busybox
# Copy the busybox build config (limited to httpd)
COPY .config .
# Compile
RUN make && ./make_single_applets.sh
# Create a non-root user to own the files and run our server
RUN adduser -D static
# Switch to the scratch image
FROM scratch
EXPOSE 3000
# Copy over the user
COPY --from=builder /etc/passwd /etc/passwd
# Copy the static binary
COPY --from=builder /busybox/busybox_HTTPD /busybox-httpd
# Use our non-root user
USER static
WORKDIR /home/static
# Uploads a blank default httpd.conf
# This is only needed in order to set the `-c` argument in this base file
# and save the developer the need to override the CMD line in case they ever
# want to use a httpd.conf
COPY httpd.conf .
# Copy the static website
# Use the .dockerignore file to control what ends up inside the image!
# NOTE: Commented out since this will also copy the .config file
# COPY . .
# Run busybox httpd
CMD ["/busybox-httpd", "-f", "-v", "-p", "3000", "-c", "httpd.conf"]