inception
This commit is contained in:
23
Dockerfile
Normal file
23
Dockerfile
Normal file
@@ -0,0 +1,23 @@
|
||||
FROM golang:alpine as builder
|
||||
|
||||
RUN apk add --no-cache \
|
||||
git
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ARG COMMIT=latest
|
||||
|
||||
RUN GOBIN=/app go install github.com/shoopea/shelly-proxy@$COMMIT
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
RUN apk add --no-cache \
|
||||
libstdc++
|
||||
|
||||
WORKDIR /app/
|
||||
|
||||
# Copy the Pre-built binary file from the previous stage
|
||||
COPY --from=builder /app/shelly-proxy .
|
||||
|
||||
# Command to run the executable
|
||||
CMD ["./shelly-proxy"]
|
||||
Reference in New Issue
Block a user