seanpedrickcase commited on
Commit
54d383e
1 Parent(s): f6d59b2

Fixed Dockerfile curl install line

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -6,8 +6,8 @@ FROM public.ecr.aws/docker/library/python:3.11.9-slim-bookworm
6
 
7
  # Install wget
8
  RUN apt-get update && \
9
- apt-get install -y wget \
10
- apt-get install -y curl \
11
  apt-get clean && rm -rf /var/lib/apt/lists/*
12
 
13
  # Create a directory for the model
 
6
 
7
  # Install wget
8
  RUN apt-get update && \
9
+ apt-get install -y wget && \
10
+ apt-get install -y curl && \
11
  apt-get clean && rm -rf /var/lib/apt/lists/*
12
 
13
  # Create a directory for the model