Update Drone configuration and Dockerfile to use mirrorred images.
Some checks failed
continuous-integration/drone Build is failing
Some checks failed
continuous-integration/drone Build is failing
Expecting pipeline to fail.
This commit is contained in:
parent
46aee4d2ab
commit
24644dba93
14
.drone.yml
14
.drone.yml
@ -5,29 +5,29 @@ name: build
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: lint
|
- name: lint
|
||||||
image: golangci/golangci-lint:v1.43.0
|
image: code.pztrn.name/containers/mirror/golangci/golangci-lint:v1.46.2
|
||||||
environment:
|
environment:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
commands:
|
commands:
|
||||||
- golangci-lint run
|
- golangci-lint run
|
||||||
|
|
||||||
- name: test
|
- name: test
|
||||||
image: golang:1.17.3-alpine
|
image: code.pztrn.name/containers/mirror/golang:1.18.3-alpine
|
||||||
environment:
|
environment:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
commands:
|
commands:
|
||||||
- go test ./...
|
- go test ./...
|
||||||
|
|
||||||
- name: docker
|
- name: docker
|
||||||
image: plugins/docker
|
image: code.pztrn.name/containers/mirror/plugins/docker:20.13.0
|
||||||
when:
|
when:
|
||||||
branch: ["master"]
|
branch: ["master"]
|
||||||
settings:
|
settings:
|
||||||
username:
|
registry: code.pztrn.name
|
||||||
from_secret: dockerhub_user
|
username: drone
|
||||||
password:
|
password:
|
||||||
from_secret: dockerhub_password
|
from_secret: drone_secret
|
||||||
repo: pztrn/opensaps
|
repo: code.pztrn.name/apps/opensaps
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
depends_on:
|
depends_on:
|
||||||
- lint
|
- lint
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
FROM golang:1.13-alpine AS build
|
FROM code.pztrn.name/containers/mirror/golang:1.18.3-alpine AS build
|
||||||
|
|
||||||
WORKDIR /go/src/gitlab.com/pztrn/opensaps
|
WORKDIR /go/src/gitlab.com/pztrn/opensaps
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
RUN go build
|
RUN go build
|
||||||
|
|
||||||
FROM alpine:3.10
|
FROM code.pztrn.name/containers/mirror/alpine:3.16.0
|
||||||
LABEL maintainer "Stanislav N. <pztrn@pztrn.name>"
|
LABEL maintainer "Stanislav N. <pztrn@pztrn.name>"
|
||||||
|
|
||||||
COPY --from=build /go/src/gitlab.com/pztrn/opensaps/opensaps /app/opensaps
|
COPY --from=build /go/src/gitlab.com/pztrn/opensaps/opensaps /app/opensaps
|
||||||
|
Loading…
Reference in New Issue
Block a user