We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a53d5eb commit 35b6789Copy full SHA for 35b6789
2 files changed
Dockerfile
@@ -73,11 +73,13 @@ RUN make install-hwcomponents CC=gcc CXX=g++
73
# Install jupyterlab and ipywidgets
74
RUN pip install jupyterlab ipywidgets
75
76
+# Copy repository into image root workspace
77
+COPY . ./
78
+
79
# Install accelforge
80
ENV ACCELFORGE_CONFIG_PATH=/home/workspace/.accelforge/config.yaml
81
RUN mkdir -p /home/workspace/.accelforge/
-RUN pip install accelforge
-# WORKDIR /home/workspace
82
+RUN pip install -e .
83
84
# ENTRYPOINT ["/bin/bash"]
85
Makefile
@@ -2,7 +2,7 @@ DOCKER_EXE ?= docker
2
DOCKER_NAME ?= accelforge
3
DOCKER_BUILD ?= ${DOCKER_EXE} buildx build --load
4
5
-VERSION := 0.1
+VERSION := 0.1.1
6
7
USER := timeloopaccelergy
8
REPO := accelforge
0 commit comments