zakame / devspace-perl

Provides Perl container image for devspace.sh

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

devspace-perl

This is a Perl container image meant to be used for devspace.

Feel free to fork this repo and make customizations especially on Dockerfile to install/configure your application's dependencies as needed!

Quick Start

  • Run devspace init on your Perl project

  • Edit devspace.yaml so it uses this image for your dev container:

dev:
  replacePods:
  - imageSelector: ${IMAGE}
    replaceImage: ghcr.io/zakame/devspace-perl:master
  • Edit devspace_start.sh to set up your dev container:
# If your project has a Carton snapshot, for example:
apt-get update
apt-get install -y --no-install-recommends gcc libssl-dev
echo "Installing Carton snapshot support for cpm"
cpm install -g Carton

echo "Installing cpanfile dependencies"
cpm install
  • Run devspace dev and hack away!

See Also

About

Provides Perl container image for devspace.sh

License:MIT License


Languages

Language:Perl 64.7%Language:Dockerfile 35.3%