From aa9246da4ec9b50c5d3f0a412ec44516c8475519 Mon Sep 17 00:00:00 2001 From: Arie Date: Mon, 27 Jun 2022 10:37:25 +1000 Subject: [PATCH] Removes COPY instruction for static directory --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 28be727..9f8858e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,8 +19,5 @@ WORKDIR /usr/local/bin # copy built exacutable COPY --from=builder /usr/src/microbin/target/release/microbin /usr/local/bin/microbin -# copy /static folder containing the stylesheets -COPY --from=builder /usr/src/microbin/static /usr/local/bin/static - # run the binary -CMD ["microbin"] \ No newline at end of file +CMD ["microbin"]