Skip to content

Instantly share code, notes, and snippets.

View gdiasb's full-sized avatar
👀
Looking for a job

Gabriela gdiasb

👀
Looking for a job
View GitHub Profile
@gdiasb
gdiasb / Dockerfile
Created February 26, 2024 14:28 — forked from alucard001/Dockerfile
Docker + Laravel + Nginx + Swoole Reverse Proxy Setup
FROM php_base:latest
RUN apt update -y && apt upgrade -y
WORKDIR /var/www/html
RUN composer update --optimize-autoloader
COPY src/. /var/www/html
COPY build/php/.env.local /var/www/html/.env