Initial commit.

This commit is contained in:
Kavin 2022-06-17 20:54:45 +01:00
parent 54035a6628
commit ba1100a676
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
8 changed files with 239 additions and 0 deletions

21
Dockerfile Normal file
View file

@ -0,0 +1,21 @@
FROM golang:latest AS build
WORKDIR /app/
COPY . .
RUN --mount=type=cache,target=/root/.cache/go-build \
go build -ldflags "-s -w" main.go
FROM debian:stable-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app/
COPY --from=build /app/main /app/ryd-proxy
EXPOSE 3000
CMD ./ryd-proxy