Browse Source

Upgrade alpine to 3.8 (#5423)

tags/v1.7.0-dev
techknowlogick 5 years ago
parent
commit
5c13ba8d2e
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Dockerfile

+ 2
- 2
Dockerfile View File



################################### ###################################
#Build stage #Build stage
FROM golang:1.11-alpine3.7 AS build-env
FROM golang:1.11-alpine3.8 AS build-env


ARG GITEA_VERSION ARG GITEA_VERSION
ARG TAGS="sqlite sqlite_unlock_notify" ARG TAGS="sqlite sqlite_unlock_notify"
RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
&& make clean generate build && make clean generate build


FROM alpine:3.7
FROM alpine:3.8
LABEL maintainer="maintainers@gitea.io" LABEL maintainer="maintainers@gitea.io"


EXPOSE 22 3000 EXPOSE 22 3000

Loading…
Cancel
Save