yosup/Dockerfile
2022-12-22 11:11:34 -08:00

5 lines
154 B
Docker

FROM golang:1.19.1-alpine3.16
RUN go install git.sr.ht/~tomtom/http-server@latest
ADD . .
CMD http-server -spa -cors -default=index.html -address=:80 .