We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc8f322 commit bc96804Copy full SHA for bc96804
2 files changed
Dockerfile
@@ -2,7 +2,11 @@
2
# docker build github.com/aspose-barcode-cloud/aspose-barcode-cloud-python -t barcode-cloud-python:$(git describe --tags)
3
# docker run barcode-cloud-python:$(git describe --tags) publish -e "TEST_CONFIGURATION_ACCESS_TOKEN=" -e "TWINE_PASSWORD="
4
5
-FROM python:latest
+FROM python:2
6
+
7
+RUN apt-get update \
8
+ && apt-get install -y python3-pip \
9
+ && rm -rf /var/lib/apt/lists/*
10
11
WORKDIR /aspose-barcode-cloud-python
12
COPY . .
Makefile
@@ -40,7 +40,7 @@ publish: check_git test clean dist
40
41
.PHONY: init-docker
42
init-docker:
43
- pip install -r publish-requirements.txt
+ python3 -m pip install -r publish-requirements.txt
44
45
.PHONY: publish-docker
46
publish-docker: init-docker test dist
0 commit comments