mirror of
https://github.com/Luzifer/staticmap.git
synced 2024-12-20 12:51:18 +00:00
Follow hadolint advices
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
f5fb7f0889
commit
54b1062f25
1 changed files with 3 additions and 3 deletions
|
@ -5,13 +5,13 @@ LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
||||||
ENV CACHE_DIR /data/map-cache
|
ENV CACHE_DIR /data/map-cache
|
||||||
ENV XDG_CACHE_HOME /data/tile-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
|
WORKDIR /go/src/github.com/Luzifer/staticmap
|
||||||
|
|
||||||
RUN set -ex \
|
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)" \
|
&& 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
|
EXPOSE 3000
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue