We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad3b90a commit 87c82dfCopy full SHA for 87c82df
1 file changed
Dockerfile
@@ -12,7 +12,13 @@ RUN /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/instal
12
13
ENV PATH="/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:${PATH}"
14
15
+RUN mkdir -p /home/linuxbrew/app
16
+
17
+WORKDIR /home/linuxbrew/app
18
19
COPY --chown=linuxbrew:linuxbrew homebrew_releaser homebrew_releaser
20
COPY --chown=linuxbrew:linuxbrew setup.py setup.py
21
-ENTRYPOINT ["/bin/bash", "-c", "pip install . && python /home/linuxbrew/homebrew_releaser/app.py"]
22
+RUN pip install .
23
24
+ENTRYPOINT ["python", "/home/linuxbrew/app/homebrew_releaser/app.py"]
0 commit comments