We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cda2362 commit e144623Copy full SHA for e144623
.dockerignore
@@ -3,3 +3,6 @@ __pycache__/
3
.git
4
output
5
build
6
+.ruff_cache
7
+.pytest_cache
8
+.mypy_cache
Dockerfile
@@ -1,8 +1,5 @@
1
# Small image suitable for ops2deb generate/update but not for building packages
2
-FROM bitnami/minideb:bullseye AS slim
-ENV LC_ALL=C.UTF-8 \
- LANG=C.UTF-8
-RUN install_packages unzip tar
+FROM wakemeops/minideb:bullseye AS slim
ARG OPS2DEB_PATH="dist/ops2deb"
COPY ${OPS2DEB_PATH} /usr/local/bin/ops2deb
ENTRYPOINT ["ops2deb"]
0 commit comments