aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorjakob.stendahl <jakob.stendahl@infomedia.dk>2022-01-24 16:23:49 +0100
committerjakob.stendahl <jakob.stendahl@infomedia.dk>2022-01-24 16:23:49 +0100
commit3a023446c53b3688003183aabd723945cbd4423d (patch)
tree4f50c66de1c621ff8945fc13145add3f1ea31600 /Dockerfile
parent435827769c7eb9ebd170c77e0cb5035b9c4935cd (diff)
downloadRSS-watcher-3a023446c53b3688003183aabd723945cbd4423d.tar.gz
RSS-watcher-3a023446c53b3688003183aabd723945cbd4423d.zip
:wrench: Change to not using smaller image for the time being
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 8fc7322..3f33149 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,8 +5,11 @@ COPY . .
RUN cargo install --path .
-FROM debian:buster-slim
-COPY --from=builder /usr/local/cargo/bin/rss-watcher /usr/local/bin/rss-watcher
-ENV RUST_LOG=info
+#FROM debian:buster-slim
+#RUN apt-get update \
+# && apt-get install -y libssl-dev libc-bin libc6 \
+# && rm -rf /var/lib/apt/lists/*
+#COPY --from=builder /usr/local/cargo/bin/rss-watcher /usr/local/bin/rss-watcher
+#ENV RUST_LOG=info
CMD ["rss-watcher"]