Sha256: 9aa90f559e91928fc4c6dd10ca0d8718a3724538d5f05c8ea7e1fa0592f3519f

Contents?: true

Size: 796 Bytes

Versions: 7

Compression:

Stored size: 796 Bytes

Contents

FROM ruby:2.6.3
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
RUN mkdir /hubspot-api-client

COPY ./lib /hubspot-api-client/lib
COPY ./sample-apps /hubspot-api-client/sample-apps
COPY ./spec /hubspot-api-client/spec
COPY ./Gemfile /hubspot-api-client/Gemfile
COPY ./Gemfile.lock /hubspot-api-client/Gemfile.lock
COPY ./hubspot-api-client.gemspec /hubspot-api-client/hubspot-api-client.gemspec

WORKDIR /hubspot-api-client/sample-apps/trello-integration-app
RUN bundle install

# Add a script to be executed every time the container starts.
COPY ./sample-apps/trello-integration-app/docker-entrypoint.sh /usr/bin/
RUN chmod +x /usr/bin/docker-entrypoint.sh
ENTRYPOINT ["docker-entrypoint.sh"]
EXPOSE 3000

# Start the main process.
CMD ["rails", "server", "-b", "0.0.0.0"]

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hubspot-api-client-9.0.0 sample-apps/trello-integration-app/Dockerfile
hubspot-api-client-8.0.1 sample-apps/trello-integration-app/Dockerfile
hubspot-api-client-8.0.0 sample-apps/trello-integration-app/Dockerfile
hubspot-api-client-7.3.0 sample-apps/trello-integration-app/Dockerfile
hubspot-api-client-7.2.0 sample-apps/trello-integration-app/Dockerfile
hubspot-api-client-7.1.1 sample-apps/trello-integration-app/Dockerfile
hubspot-api-client-7.1.0 sample-apps/trello-integration-app/Dockerfile