summaryrefslogtreecommitdiff
path: root/test/docker/focal
diff options
context:
space:
mode:
Diffstat (limited to 'test/docker/focal')
-rwxr-xr-xtest/docker/focal7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/docker/focal b/test/docker/focal
index b35040b..f24d231 100755
--- a/test/docker/focal
+++ b/test/docker/focal
@@ -1,9 +1,10 @@
FROM ubuntu:focal
-WORKDIR /python-magic
-COPY . .
RUN apt-get update
RUN apt-get -y install python python3 locales python3-pip libmagic1
RUN locale-gen en_US.UTF-8
+
+WORKDIR /python-magic
+COPY . .
RUN python3 -m pip install tox
-CMD python3 -m tox
+