mirror of
https://github.com/lyx0/yaf.git
synced 2024-11-13 19:49:53 +01:00
728e6452b3
Instructions for how to build & use it added to README.md Add GitHub workflow to publishing the docker image to the GitHub Container Repository
9 lines
146 B
Docker
9 lines
146 B
Docker
FROM golang:alpine as build
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN go build
|
|
|
|
FROM alpine:latest
|
|
COPY --from=build /app/jaf /app/jaf
|
|
WORKDIR /app
|
|
CMD ["./jaf"]
|