Skip to content

Instantly share code, notes, and snippets.

View IvanIvashchenko's full-sized avatar

IvanIvashchenko

View GitHub Profile
@IvanIvashchenko
IvanIvashchenko / Dockerfile
Created March 14, 2024 16:23
Example of local docker configuration for simple RoR application
FROM ubuntu:22.04 AS build
SHELL ["/bin/bash", "-c"]
ENV RUBY_MAJOR 3.2
ENV RUBY_VERSION 3.2.2
# Default directory
ENV WORKING_PATH /app
RUN mkdir -p $WORKING_PATH