Skip to content
Snippets Groups Projects

Sunho fixed

Closed Sunho Kim requested to merge sunho_fixed into main
4 files
+ 155
1
Compare changes
  • Side-by-side
  • Inline
Files
4
Dockerfile 0 → 100644
+ 19
0
 
##### BASE #####
 
FROM python:3.10-slim-buster
 
 
##### VARIABLES #####
 
WORKDIR /Users/terminal-fragment-selector
 
 
COPY requirements.txt /Users/terminal-fragment-selector/requirements.txt
 
COPY requirements_dev.txt /Users/terminal-fragment-selector/requirements_dev.txt
 
 
##### INSTALL #####
 
RUN apt-get update \
 
&& apt-get install gcc -y \
 
&& apt-get clean
 
RUN pip install -r /Users/terminal-fragment-selector/requirements.txt
 
RUN pip install -r /Users/terminal-fragment-selector/requirements_dev.txt
 
 
 
 
Loading