MQTT_WeatherGateway/Dockerfile

9 lines
87 B
Docker
Raw Permalink Normal View History

2022-07-24 16:59:12 +00:00
FROM 'ruby:3.1.0'
COPY . /app
WORKDIR /app
RUN bundle
CMD ["ruby", "src/server.rb"]