with go plan

This commit is contained in:
Kasper Juul Hermansen 2022-09-12 22:19:31 +02:00
parent 7d8722d995
commit 08a6b4dda7
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
2 changed files with 4 additions and 8 deletions

View File

@ -1,11 +1,7 @@
FROM rust:1.62.1-slim-buster
RUN apt-get update && apt-get upgrade -y
RUN apt-get install libssl-dev
RUN apt-get install -y -q build-essential curl
FROM golang
COPY . .
RUN cargo build
RUN go build cmd/main.go
CMD [ "cargo", "run" ]
CMD [ "main" ]

View File

@ -1,2 +1,2 @@
target/
.cuddle/
main/