MQTT_WeatherGateway/Dockerfile

9 lines
87 B
Docker

FROM 'ruby:3.1.0'
COPY . /app
WORKDIR /app
RUN bundle
CMD ["ruby", "src/server.rb"]