Compare commits
2 Commits
1dc731ca77
...
feat/nonro
Author | SHA1 | Date | |
---|---|---|---|
79836b065a | |||
725fea2387 |
10
Makefile
10
Makefile
@@ -21,11 +21,11 @@ docker-run:
|
||||
fake-sms:latest
|
||||
|
||||
docker-release:
|
||||
docker tag fake-sms:latest cadoles/fake-sms:latest
|
||||
docker tag fake-sms:latest cadoles/fake-sms:$(DOCKER_DATE_TAG)
|
||||
docker login
|
||||
docker push cadoles/fake-sms:latest
|
||||
docker push cadoles/fake-sms:$(DOCKER_DATE_TAG)
|
||||
docker tag fake-sms:latest reg.cadoles.com/cadoles/fake-sms:latest
|
||||
docker tag fake-sms:latest reg.cadoles.com/cadoles/fake-sms:$(DOCKER_DATE_TAG)
|
||||
docker login reg.cadoles.com
|
||||
docker push reg.cadoles.com/cadoles/fake-sms:latest
|
||||
docker push reg.cadoles.com/cadoles/fake-sms:$(DOCKER_DATE_TAG)
|
||||
|
||||
test:
|
||||
go test -v -race ./...
|
||||
|
@@ -1,14 +1,11 @@
|
||||
FROM reg.cadoles.com/dh/library/golang:1.17 AS build
|
||||
FROM reg.cadoles.com/dh/library/golang:1.22-alpine AS build
|
||||
|
||||
ARG HTTP_PROXY=
|
||||
ARG HTTPS_PROXY=
|
||||
ARG http_proxy=
|
||||
ARG https_proxy=
|
||||
|
||||
RUN apt-get update && apt-get install -y build-essential git bash curl python2
|
||||
|
||||
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - \
|
||||
&& apt-get install -y nodejs
|
||||
RUN apk update && apk add --no-cache build-base git bash curl python3 nodejs npm
|
||||
|
||||
COPY . /src
|
||||
|
||||
@@ -16,7 +13,7 @@ WORKDIR /src
|
||||
|
||||
RUN cp -f misc/docker/config-patch.yml misc/release/config-patch.yml
|
||||
|
||||
RUN go get github.com/krishicks/yaml-patch/cmd/yaml-patch
|
||||
RUN go install github.com/krishicks/yaml-patch/cmd/yaml-patch@v0.0.10
|
||||
|
||||
RUN npm install \
|
||||
&& make vendor \
|
||||
|
Reference in New Issue
Block a user