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.
15 lines
407 B
15 lines
407 B
FROM alpine
|
|
|
|
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."
|
|
|
|
RUN apk update && apk add ca-certificates
|
|
|
|
EXPOSE 8080
|
|
|
|
COPY docker_releases/golang-url-shortener_linux_arm/golang-url-shortener /
|
|
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["/golang-url-shortener"]
|
|
|