hemantn Claude Sonnet 4.6 commited on
Commit
f40481c
·
1 Parent(s): 15b85bd

Fix conda create syntax: -c flag must precede package names

Browse files

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -6,7 +6,7 @@ RUN apt-get update && apt-get install -y \
6
  && rm -rf /var/lib/apt/lists/*
7
 
8
  # Create isolated Python 3.11 environment for ambertools (cpptraj bundled inside)
9
- RUN conda create -n amber_env python=3.11 -c conda-forge ambertools -y && conda clean -afy
10
 
11
  # Set working directory
12
  WORKDIR /app
 
6
  && rm -rf /var/lib/apt/lists/*
7
 
8
  # Create isolated Python 3.11 environment for ambertools (cpptraj bundled inside)
9
+ RUN conda create -n amber_env -c conda-forge python=3.11 ambertools -y && conda clean -afy
10
 
11
  # Set working directory
12
  WORKDIR /app