We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e185485 commit 6851414Copy full SHA for 6851414
.dockerignore
@@ -4,5 +4,6 @@
4
Dockerfile
5
LICENSE
6
python-client/
7
+out/
8
README.md
9
test/
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.7.4-buster
+FROM python:3.9-buster
2
3
RUN useradd -ms /bin/bash user
@@ -9,7 +9,7 @@ RUN wget https://raw.githubusercontent.com/swagger-api/swagger-codegen/4607a90d7
pip install -r requirements.txt && rm -f requirements.txt && \
10
mkdir /home/user/.bash_completion.d && \
11
activate-global-python-argcomplete --dest=/home/user/.bash_completion.d/ && \
12
- echo "source ~/.bash_completion.d/python-argcomplete.sh" >> /home/user/.bashrc
+ echo "source ~/.bash_completion.d/python-argcomplete" >> /home/user/.bashrc
13
14
USER user
15
0 commit comments