antoinekrajnc commited on
Commit
9fa9756
·
1 Parent(s): 303044c

add packages to install to stabilize build process

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -3
Dockerfile CHANGED
@@ -2,9 +2,13 @@ FROM continuumio/miniconda3
2
 
3
  WORKDIR /home/app
4
 
5
- RUN apt-get update
6
- RUN apt-get install nano unzip
7
- RUN apt install curl -y
 
 
 
 
8
 
9
  RUN curl -fsSL https://get.deta.dev/cli.sh | sh
10
 
 
2
 
3
  WORKDIR /home/app
4
 
5
+ # Updated to include build-essential and libpq-dev
6
+ RUN apt-get update && apt-get install -y \
7
+ nano \
8
+ unzip \
9
+ curl \
10
+ build-essential \
11
+ libpq-dev
12
 
13
  RUN curl -fsSL https://get.deta.dev/cli.sh | sh
14