8 lines
110 B
Docker
8 lines
110 B
Docker
![]() |
FROM python:latest
|
||
|
|
||
|
RUN pip install \
|
||
|
openapi-python-client
|
||
|
|
||
|
# Set the default command to bash.
|
||
|
CMD ["bash"]
|