1
0
Fork 0
mirror of https://github.com/Luzifer/staticmap.git synced 2024-10-18 07:34:23 +00:00

Follow hadolint advices

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-04-03 20:39:24 +02:00
parent f5fb7f0889
commit 54b1062f25
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -5,13 +5,13 @@ LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
ENV CACHE_DIR /data/map-cache
ENV XDG_CACHE_HOME /data/tile-cache
ADD . /go/src/github.com/Luzifer/staticmap
COPY . /go/src/github.com/Luzifer/staticmap
WORKDIR /go/src/github.com/Luzifer/staticmap
RUN set -ex \
&& apk add --update git ca-certificates \
&& apk --no-cache add git ca-certificates \
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
&& apk del --purge git
&& apk --no-cache del --purge git
EXPOSE 3000