mirror of
https://github.com/not-kennethreitz/pipenv-docker-tests.git
synced 2026-06-05 06:56:17 +00:00
test
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
FROM ubuntu:18.04
|
||||
|
||||
# -- Install Pipenv:
|
||||
RUN apt update && apt install python-pip python3-pip time git -y && pip3 install pipenv
|
||||
|
||||
ENV LC_ALL C.UTF-8
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
# -- Install Application into container:
|
||||
RUN set -ex && mkdir /app
|
||||
|
||||
WORKDIR /pipenv
|
||||
|
||||
# --------------------
|
||||
# - Using This File: -
|
||||
# --------------------
|
||||
|
||||
# FROM kennethreitz/pipenv
|
||||
|
||||
# COPY . /app
|
||||
|
||||
# -- Replace with the correct path to your app's main executable
|
||||
# CMD python3 main.py
|
||||
Reference in New Issue
Block a user