mirror of
https://github.com/watn3y/steamsalty.git
synced 2025-06-07 15:21:00 +02:00
v0.1
This commit is contained in:
parent
6aa64b6287
commit
3ec330e3a2
16 changed files with 408 additions and 1 deletions
16
Dockerfile
Normal file
16
Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
FROM golang:alpine AS builder
|
||||
|
||||
WORKDIR /tmp/build
|
||||
|
||||
COPY . .
|
||||
RUN go mod download
|
||||
RUN go build -o /tmp/build/bin/steamsalty
|
||||
|
||||
|
||||
|
||||
FROM scratch
|
||||
WORKDIR /app
|
||||
COPY --from=builder /tmp/build/bin/steamsalty /app/steamsalty
|
||||
|
||||
|
||||
ENTRYPOINT ["/app/steamsalty"]
|
Loading…
Add table
Add a link
Reference in a new issue