Compare commits

...

2 Commits

Author SHA1 Message Date
Tamás Gérczei 3146da7ae8
fixed version tag in assembly stage 2021-03-13 07:20:13 +01:00
Tamás Gérczei 66ac213eb1
version bump 2021-03-13 07:02:11 +01:00
2 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
ARG GOVERSION="1.15.6"
ARG GOVERSION="1.16.2"
FROM golang:${GOVERSION}-alpine AS buildenv
ARG REPO="https://gitea.com/gitea/tea.git"
ARG VERSION="0.6.0"
ARG VERSION="0.7.0"
ENV TEA_VERSION="${VERSION}"
ARG CGO_ENABLED="0"
@ -22,7 +22,7 @@ RUN apk add --quiet --no-cache git && \
FROM scratch
ARG BUILD_DATE
ARG VERSION="0.6.0"
ARG VERSION="0.7.0"
LABEL org.opencontainers.image.title="Gitea - Git with a cup of tea"
LABEL org.opencontainers.image.description="A command line tool to interact with Gitea servers"
LABEL org.opencontainers.image.version="${VERSION}"

View File

@ -1,7 +1,7 @@
## tea: A command line tool to interact with Gitea servers
### Build
- docker build . -t gitea/tea:0.6.0
- docker build . -t gitea/tea:0.7.0
...or to build a specific release (check [here](https://gitea.com/gitea/tea/releases)):