Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(402)

Unified Diff: blimp/engine/testing/Dockerfile

Issue 2629743003: Remove all blimp engine code (Closed)
Patch Set: Use consistent comment style in //chrome Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/engine/start_engine.sh ('k') | blimp/tools/client_engine_integration.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/testing/Dockerfile
diff --git a/blimp/engine/testing/Dockerfile b/blimp/engine/testing/Dockerfile
deleted file mode 100644
index e975d32ca6a9e5fcca087cd4a328c89bfd65646b..0000000000000000000000000000000000000000
--- a/blimp/engine/testing/Dockerfile
+++ /dev/null
@@ -1,24 +0,0 @@
-# This Dockerfile is used to build a filesystem environment containing
-# binaries and required files for Blimp Engine test and tests for dependencies
-# of Blimp Engine. It is built on the same base image that is used to run the
-# Engine itself.
-FROM base:latest
-
-RUN mkdir /tmp/blimp/
-
-RUN useradd -ms /bin/bash blimp_user
-
-# Put all the Blimp related files in /blimp so they are kept separate from
-# the OS files. Using '.' instead of '*' ensures directory structure is
-# maintained since ADD only copies the contents of directories. This is done by
-# first adding the files to directory under /tmp/blimp and then copying it to
-# target /blimp location to workaround Docker permission bug
-# (https://github.com/docker/docker/issues/7511 and
-# https://github.com/docker/docker/issues/1295).
-ADD . /tmp/blimp/
-
-RUN cp -r /tmp/blimp /blimp && \
- chown -R blimp_user /blimp && \
- rm -rf /tmp/blimp
-
-USER blimp_user
« no previous file with comments | « blimp/engine/start_engine.sh ('k') | blimp/tools/client_engine_integration.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698