mirror of
https://github.com/sorenisanerd/gotty.git
synced 2024-11-09 15:24:25 +00:00
Added Makefile mods, Dockerfile for demo
This commit is contained in:
parent
ded7f094e6
commit
1680db0961
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
FROM golang:1.13.1
|
||||||
|
|
||||||
|
WORKDIR /gotty
|
||||||
|
COPY . /gotty
|
||||||
|
RUN CGO_ENABLED=0 make
|
||||||
|
|
||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
RUN apk update && \
|
||||||
|
apk upgrade && \
|
||||||
|
apk --no-cache add ca-certificates && \
|
||||||
|
apk add bash
|
||||||
|
WORKDIR /root
|
||||||
|
COPY --from=0 /gotty/gotty /usr/bin/
|
||||||
|
CMD ["gotty", "-w", "bash"]
|
Loading…
Reference in New Issue
Block a user