aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 4db787e0094a43d6f758043ec7fbdabeb7a37a1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM alpine:3.14.0

WORKDIR /usr/src/app

RUN apk add --update alpine-sdk yasm git

RUN git clone --recursive https://github.com/nemasu/asmttpd.git .

RUN make release

EXPOSE 80

ENTRYPOINT [ "./asmttpd", "./web_root", "80" ]