Skip to content

Commit

Permalink
Update Dockerfile to use BRANCH_NAME arg
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyMinucci authored Jan 25, 2024
1 parent b5b8c86 commit 8bad572
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM python:3.9 AS base

ARG BRANCH_NAME=dev

RUN apt-get update --allow-releaseinfo-change -y
RUN apt-get upgrade --fix-missing -y
RUN apt-get install -y --fix-missing --no-install-recommends git

RUN cd /tmp && git clone -b dev-k https://github.com/quanted/nta_app.git
RUN cd /tmp && git clone -b ${BRANCH_NAME} https://github.com/quanted/nta_app.git

FROM continuumio/miniconda3:4.10.3

Expand Down

0 comments on commit 8bad572

Please sign in to comment.