From 6407c89d90f9b0a82437a6997871fcdc15471edd Mon Sep 17 00:00:00 2001 From: Gorgeous-Patrick <33488623+Gorgeous-Patrick@users.noreply.github.com> Date: Thu, 5 Dec 2024 14:47:05 -0500 Subject: [PATCH] DOCKER NOT WORKING --- .gitignore | 1 + Dockerfile | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/.gitignore b/.gitignore index 900a322..6f96470 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ env*.sh /test .vscode +runprog diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..93d0d4e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM golang + +COPY . /app +WORKDIR /app/cmd/runprog + +RUN go build