Sha256: 691be5a44d2c2c6d9cb683edd66968e4d7f231f8818aaebeb8fbd909d29ddc6c

Contents?: true

Size: 315 Bytes

Versions: 1

Compression:

Stored size: 315 Bytes

Contents

# syntax=docker/dockerfile:1

FROM python:<%= @env[:base][:python_version][:value] %>
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

# establish the working directory 
WORKDIR /code

# copy and install requirements.txt to speed up caching:
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
roro-0.3.33 lib/roro/stacks/unstoppable_developer_styles/okonomi/languages/python/frameworks/django/templates/manifest/Dockerfile.tt