You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
408 B
14 lines
408 B
FROM scratch
|
|
|
|
LABEL maintainer="Max Schmitt <max@schmitt.mx>"
|
|
LABEL readme.md="https://github.com/maxibanki/golang-url-shortener/blob/master/README.md"
|
|
LABEL description="This Dockerfile will install the Golang URL Shortener."
|
|
|
|
EXPOSE 8080
|
|
|
|
COPY ca-certificates.crt /etc/ssl/certs/
|
|
COPY docker_releases/golang-url-shortener_linux_amd64/golang-url-shortener /
|
|
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["/golang-url-shortener"]
|
|
|