The first commit
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM ubuntu:20.04 as build
|
||||
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
COPY packages.txt /
|
||||
RUN apt-get update && apt-get install -y $(cat packages.txt)
|
||||
|
||||
COPY requirements.txt /
|
||||
RUN python3 -m pip install -r requirements.txt
|
||||
|
||||
RUN mkdir /banjo
|
||||
WORKDIR /banjo
|
Reference in New Issue
Block a user