UNCLASSIFIED

Commit a6b02795 authored by Michael Uranaka's avatar Michael Uranaka
Browse files

Fixing docker build

parent c69f4949
...@@ -9,15 +9,12 @@ WORKDIR /app ...@@ -9,15 +9,12 @@ WORKDIR /app
COPY ./scripts /app COPY ./scripts /app
COPY redis-cli.tar.gz . COPY redis-cli.tar.gz .
# Setup libraries and node modules. # Set workdir.
WORKDIR /app/bundles
RUN tar xzf redis-cli.tar.gz
RUN rm redis-cli.tar.gz
RUN mv redis-cli /usr/local/bin/redis-cli
WORKDIR /app WORKDIR /app
# Cleanup # Setup libraries and node modules.
RUN rm -rf bundles RUN tar xzf redis-cli.tar.gz && rm redis-cli.tar.gz
RUN mv redis-cli /usr/local/bin/redis-cli
# Set permissions and ownership # Set permissions and ownership
RUN chown -R 1000 /app RUN chown -R 1000 /app
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment