Browse Source

alpine 3.11 (#9440)

tags/v1.11.0-rc1
techknowlogick 4 years ago
parent
commit
d86e587186
No account linked to committer's email address
2 changed files with 3 additions and 3 deletions
  1. 1
    1
      .drone.yml
  2. 2
    2
      Dockerfile

+ 1
- 1
.drone.yml View File



- name: update - name: update
pull: default pull: default
image: alpine:3.10
image: alpine:3.11
commands: commands:
- mv ./options/locale/locale_en-US.ini ./options/ - mv ./options/locale/locale_en-US.ini ./options/
- "sed -i -e 's/=\"/=/g' -e 's/\"$$//g' ./options/locale/*.ini" - "sed -i -e 's/=\"/=/g' -e 's/\"$$//g' ./options/locale/*.ini"

+ 2
- 2
Dockerfile View File



################################### ###################################
#Build stage #Build stage
FROM golang:1.13-alpine3.10 AS build-env
FROM golang:1.13-alpine3.11 AS build-env


ARG GOPROXY ARG GOPROXY
ENV GOPROXY ${GOPROXY:-direct} ENV GOPROXY ${GOPROXY:-direct}
RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \ RUN if [ -n "${GITEA_VERSION}" ]; then git checkout "${GITEA_VERSION}"; fi \
&& make clean build && make clean build


FROM alpine:3.10
FROM alpine:3.11
LABEL maintainer="maintainers@gitea.io" LABEL maintainer="maintainers@gitea.io"


EXPOSE 22 3000 EXPOSE 22 3000

Loading…
Cancel
Save