Skip to content

Instantly share code, notes, and snippets.

View jmeiracorbal's full-sized avatar

Jose Meira jmeiracorbal

  • Spain
  • 03:24 (UTC +01:00)
View GitHub Profile
@jmeiracorbal
jmeiracorbal / Dockerfile
Created January 2, 2023 18:07 — forked from fhdalikhan/Dockerfile
Dockerfile for PHP 7.4 FPM Alpine
FROM php:7.4-fpm-alpine
WORKDIR /var/www/html
# Setup GD extension
RUN apk add --no-cache \
freetype \
libjpeg-turbo \
libpng \
freetype-dev \
@jmeiracorbal
jmeiracorbal / git-tag-sync
Created December 27, 2022 11:18 — forked from cadams500/git-tag-sync
Synchronize Git Tags With Remote
git tag -l | xargs git tag -d
git fetch