stochasticribosome
commited on
Commit
•
23cc17e
1
Parent(s):
4afef57
Add AMBER path
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -20,6 +20,11 @@ WORKDIR $HOME/app
|
|
20 |
|
21 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
22 |
COPY --chown=user . $HOME/app
|
|
|
|
|
|
|
|
|
|
|
23 |
RUN pip install -r requirements.txt
|
24 |
CMD ["python", "main.py"]
|
25 |
|
|
|
20 |
|
21 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
22 |
COPY --chown=user . $HOME/app
|
23 |
+
|
24 |
+
ENV AMBERHOME="/usr/bin/amber22/"
|
25 |
+
ENV PATH="$AMBERHOME/bin:$PATH"
|
26 |
+
ENV PYTHONPATH="$AMBERHOME/lib/python3.10/site-packages"
|
27 |
+
|
28 |
RUN pip install -r requirements.txt
|
29 |
CMD ["python", "main.py"]
|
30 |
|