seonglae commited on
Commit
788259d
·
1 Parent(s): 82460db

feat: hf space corr-steer

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -12
Dockerfile CHANGED
@@ -1,16 +1,10 @@
1
- # Use Node.js 18 as base image
2
- FROM node:18-bullseye
3
-
4
- # Install Python 3.9 and uv
5
- RUN apt-get update && apt-get install -y \
6
- python3.9 \
7
- python3-dev \
8
- build-essential \
9
- curl \
10
- && rm -rf /var/lib/apt/lists/*
11
 
12
- # Set up aliases for python
13
- RUN ln -s /usr/bin/python3.9 /usr/bin/python
 
 
14
 
15
  # Install uv
16
  RUN curl -LsSf https://astral.sh/uv/install.sh | sh
 
1
+ # Use Python 3.10 as base image
2
+ FROM python:3.10-bullseye
 
 
 
 
 
 
 
 
3
 
4
+ # Install Node.js 18
5
+ RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
6
+ && apt-get install -y nodejs \
7
+ && rm -rf /var/lib/apt/lists/*
8
 
9
  # Install uv
10
  RUN curl -LsSf https://astral.sh/uv/install.sh | sh