This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
api/Dockerfile
Stanislaw 56f8b57fca hotfix 2
2022-12-26 01:35:57 +01:00

5 lines
80 B
Docker

FROM golang:latest
WORKDIR /app
COPY ./ ./
RUN go get .
CMD [ "go", "run", "." ]