This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:7.4-apache | |
# persistent dependencies | |
RUN set -eux; \ | |
apt-get update; \ | |
apt-get install -y --no-install-recommends \ | |
# Ghostscript is required for rendering PDF previews | |
ghostscript \ | |
; \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM wordpress:apache | |
# composer install | |
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer | |
RUN apt-get -y update \ | |
&& apt-get -yq install \ | |
gnupg2 \ | |
curl \ | |
&& apt-get autoclean \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
close all; | |
clc; | |
% Paramètres géométriques du capteur : | |
R=0.005; %Rayon d'une électrode en m | |
L=0.14; %Distance entre les électrodes en m | |
Uexp=2.47; %Tension en Volt | |
%TODO | |
epsilon = 710e-12; %Permitivité du milieu (comment le matériau est permissif) | |
%TODO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
close all; | |
clc; | |
% Paramètres géométriques du capteur : | |
R=0.005; %Rayon d'une électrode en m | |
L=0.14; %Distance entre les électrodes en m | |
Uexp=2.47; %Tension en Volt | |
%TODO | |
epsilon = 710e-12; %Permitivité du milieu (comment le matériau est permissif) | |
%TODO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ryshe/terraria:tshock-latest | |
ENTRYPOINT [ "/bin/sh", "bootstrap.sh", "-disable-commands" ] |