Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Adding missing lines at start
  • Loading branch information
Desperate-Dan authored Aug 21, 2024
1 parent 459447e commit 02ae251
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# A modified verion of Corey's Dockerfile from: https://github.com/CorwinAnsley/artifice/blob/main/artifice/docker_rampart/Dockerfile
# This will create a docker container that can run rampart and comes preloaded with the mpvx rampart protocol

# start with an image with conda installed
FROM continuumio/miniconda3 AS compile-image

# set working directory
WORKDIR /data

# install gcc/make for porechop
RUN apt-get update -y && apt-get upgrade -y
RUN apt install build-essential -y --no-install-recommends

# copy in protocol files
Expand Down

0 comments on commit 02ae251

Please sign in to comment.