Skip to content

Commit 35b6789

Browse files
accelforge docker is now independent of any pypi version controlling issues
1 parent a53d5eb commit 35b6789

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,13 @@ RUN make install-hwcomponents CC=gcc CXX=g++
7373
# Install jupyterlab and ipywidgets
7474
RUN pip install jupyterlab ipywidgets
7575

76+
# Copy repository into image root workspace
77+
COPY . ./
78+
7679
# Install accelforge
7780
ENV ACCELFORGE_CONFIG_PATH=/home/workspace/.accelforge/config.yaml
7881
RUN mkdir -p /home/workspace/.accelforge/
79-
RUN pip install accelforge
80-
# WORKDIR /home/workspace
82+
RUN pip install -e .
8183

8284
# ENTRYPOINT ["/bin/bash"]
8385

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ DOCKER_EXE ?= docker
22
DOCKER_NAME ?= accelforge
33
DOCKER_BUILD ?= ${DOCKER_EXE} buildx build --load
44

5-
VERSION := 0.1
5+
VERSION := 0.1.1
66

77
USER := timeloopaccelergy
88
REPO := accelforge

0 commit comments

Comments
 (0)