Add directory with 23 post-mc-hepc-init dbs and metadata
This commit is contained in:
committed by
=Michael Hohn
parent
c624925aba
commit
1302db0b4e
30
client/containers/hepc/Dockerfile
Normal file
30
client/containers/hepc/Dockerfile
Normal file
@@ -0,0 +1,30 @@
|
||||
# Use a Python 3.11 image as the base
|
||||
FROM python:3.11-slim
|
||||
|
||||
# Install git
|
||||
RUN apt-get update && apt-get install -y git
|
||||
|
||||
# Create the required directory structure
|
||||
RUN mkdir -p /work-gh/mrva/
|
||||
|
||||
# Change to the directory and clone the repository
|
||||
WORKDIR /work-gh/mrva/
|
||||
RUN git clone https://github.com/hohn/mrvacommander.git && \
|
||||
cd mrvacommander && \
|
||||
git checkout hohn-0.1.24-demo
|
||||
|
||||
# Change to the client directory
|
||||
WORKDIR /work-gh/mrva/mrvacommander/client/qldbtools/
|
||||
|
||||
# We're in a container, so use pip globally -- no virtual env
|
||||
RUN pip install --upgrade pip
|
||||
|
||||
# Install the required Python packages from requirements.txt
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Install qldbtools
|
||||
RUN pip install .
|
||||
|
||||
# Run forever
|
||||
CMD ["tail", "-f", "/dev/null"]
|
||||
|
||||
Reference in New Issue
Block a user