mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 12:12:08 +01:00
Also ensure the repository doesn't get updated to an invalid state in those failure cases. Closes #5538
10 lines
114 B
Docker
10 lines
114 B
Docker
FROM python:3.11.0-buster
|
|
|
|
ARG BUILD_ARG=key
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN echo $BUILD_ARG > BUILD_ARG.contents
|