aboutsummaryrefslogtreecommitdiff
path: root/.devops/full.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '.devops/full.Dockerfile')
-rw-r--r--.devops/full.Dockerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/.devops/full.Dockerfile b/.devops/full.Dockerfile
new file mode 100644
index 0000000..618cddd
--- /dev/null
+++ b/.devops/full.Dockerfile
@@ -0,0 +1,17 @@
+ARG UBUNTU_VERSION=22.04
+
+FROM ubuntu:$UBUNTU_VERSION as build
+
+RUN apt-get update && \
+ apt-get install -y build-essential python3 python3-pip
+
+RUN pip install --upgrade pip setuptools wheel \
+ && pip install torch torchvision torchaudio sentencepiece numpy
+
+WORKDIR /app
+
+COPY . .
+
+RUN make
+
+ENTRYPOINT ["/app/.devops/tools.sh"] \ No newline at end of file