Skip to content

Instantly share code, notes, and snippets.

View cgunnels's full-sized avatar

Chris Gunnels cgunnels

View GitHub Profile

Keybase proof

I hereby claim:

  • I am cgunnels on github.
  • I am ballhogjoni (https://keybase.io/ballhogjoni) on keybase.
  • I have a public key ASCfyguQZZ1jTQsXEZPl_Ie950cyPIKXjqhqKH3vDZVEKAo

To claim this, I am signing this object:

@cgunnels
cgunnels / bash output
Created February 5, 2020 21:37
ReferenceError: fs is not defined
$ quasar dev
Dev mode.......... spa
Pkg quasar........ v1.8.5
Pkg @quasar/app... v1.5.3
Debugging......... enabled
app:extension Running "@quasar/qoverlay" Quasar App Extension... +0ms
app:extension Running "@quasar/qplaceholder" Quasar App Extension... +8ms
app:extension Running "@quasar/icon-genie" Quasar App Extension... +311ms
@cgunnels
cgunnels / Dockerfile
Created February 5, 2020 20:50
Failed Dockerfile RUN command for installing composer
RUN if [ ! -d "../vendor" ]; then \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer && \ composer install && rm $(which composer) \
;fi
@cgunnels
cgunnels / Dockerfile
Created February 5, 2020 20:48
Dockerfile snippet for installing composer
RUN if [ ! -d "$PWD/vendor" ]; then \
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \
;fi
RUN if [ ! -d "$PWD/vendor" ]; then \
composer install && rm $(which composer) \
;fi