Compare commits

..

No commits in common. "development" and "1.0.1" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View file

@ -5,6 +5,7 @@ on: push
jobs: jobs:
build: build:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- name: Repository meta - name: Repository meta
id: repository id: repository

View file

@ -1,7 +1,7 @@
FROM golang:1.24.1-alpine AS build-env FROM golang:1.24.1-alpine AS build-env
ENV GO111MODULE=on ENV GO111MODULE=on
WORKDIR /go/src/github.com/hugomd/ascii-live/ WORKDIR /go/src/github.com/hugomd/ascii-live/
# RUN apk add ca-certificates RUN apk add ca-certificates
COPY . /go/src/github.com/hugomd/ascii-live/ COPY . /go/src/github.com/hugomd/ascii-live/
RUN cd /go/src/github.com/hugomd/ascii-live && \ RUN cd /go/src/github.com/hugomd/ascii-live && \
go mod download && \ go mod download && \
@ -9,5 +9,5 @@ RUN cd /go/src/github.com/hugomd/ascii-live && \
FROM scratch FROM scratch
COPY --from=build-env /go/src/github.com/hugomd/ascii-live/main / COPY --from=build-env /go/src/github.com/hugomd/ascii-live/main /
# COPY --from=build-env /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt COPY --from=build-env /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
CMD ["/main"] CMD ["/main"]