Files
go-ssh-app/Dockerfile
2024-12-28 16:08:13 +01:00

11 lines
109 B
Docker

FROM golang:1.23.4
COPY . /app
WORKDIR /app
RUN go build && chmod +x tui-ssh-app
CMD [/app/tui-ssh-app]