Dockerfile for Tack
did:plc:e5nncb3dr5thdkjir5cfaqfe opened this 9d ago 2 comments
did:plc:e5nncb3dr5thdkjir5cfaqfe opened 9d ago
I made a Dockerfile for my deployment of Tack but I'm not sure how to best upstream it:
# docker/tack.Dockerfile
FROM golang:1.26 AS build
WORKDIR /app
COPY . .
RUN go build -o /app/bin/tack .
FROM debian:13 AS run
RUN apt-get update && apt-get -y install ca-certificates
COPY --from=build /app/bin/tack /app/bin/tack
CMD ["/app/bin/tack"]Would you be interested in me upstreaming this? I realize that the project is mainly built with Nix but I wanted to make this accessible to people that don't use Nix.
No activity yet.