Switch to new Swaggo Makefile template
All checks were successful
Build Docker and Deploy / Build Docker Container (push) Successful in 1m57s
Build Docker and Deploy / Deploy to Server (push) Successful in 12s

This commit is contained in:
2023-10-17 15:53:39 +02:00
parent 0a380f861e
commit 51f5f1005a
3 changed files with 21 additions and 6 deletions

View File

@@ -4,11 +4,13 @@ FROM golang:1-bullseye AS builder
RUN apt-get update && \
apt-get install -y ca-certificates openssl make git tar coreutils && \
apt-get install -y python3 python3-pip && \
pip install virtualenv && \
rm -rf /var/lib/apt/lists/*
COPY . /buildsrc
RUN cd /buildsrc && make build
RUN cd /buildsrc && cp "scn_send.sh" "../scn_send.sh" && make build