소스 검색

Merge pull request #50 from techiall/fix/dockerfile

Replace base docker image with Bitnami Minideb to fix #50 and #39
Dániel Szabó 2 년 전
부모
커밋
7cd136cd7b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -10,8 +10,8 @@ COPY . .
 # run release build
 RUN cargo build --release
 
-# create final container using slim version of debian
-FROM debian:buster-slim
+# https://hub.docker.com/r/bitnami/minideb
+FROM bitnami/minideb:latest
 
 # microbin will be in /usr/local/bin/microbin/
 WORKDIR /usr/local/bin