Compare commits

..

2 commits

Author SHA1 Message Date
e72ef905ce testing removal of ca-certicates from docker file
All checks were successful
ci / build (push) Successful in 43s
2025-04-28 15:38:54 +02:00
3717327e7f testing local build 2025-04-28 14:34:46 +02:00
2 changed files with 2 additions and 3 deletions

View file

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

View file

@ -1,7 +1,7 @@
FROM golang:1.24.1-alpine AS build-env
ENV GO111MODULE=on
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/
RUN cd /go/src/github.com/hugomd/ascii-live && \
go mod download && \
@ -9,5 +9,5 @@ RUN cd /go/src/github.com/hugomd/ascii-live && \
FROM scratch
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"]