diff --git a/images/taginfo/Dockerfile b/images/taginfo/Dockerfile index e3115159..c4dde56a 100644 --- a/images/taginfo/Dockerfile +++ b/images/taginfo/Dockerfile @@ -1,11 +1,6 @@ -# Use ruby:2.4 as the base image FROM ruby:2.4 - -# Set the working directory ENV workdir /apps WORKDIR $workdir - -# Install all necessary packages in a single RUN command to reduce layers RUN apt-get update && apt-get install -y \ curl \ sqlite3 \ @@ -49,9 +44,6 @@ RUN git clone https://github.com/taginfo/taginfo.git $workdir/taginfo && \ gem install bundler -v 2.3.27 && \ bundle install -# Copy necessary files COPY overwrite_config.py $workdir/ COPY start.sh $workdir/ - -# Define command to run the application CMD $workdir/start.sh