This file contains 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
const print = obj => { | |
for (const key in obj) { | |
console.log(obj[key]) | |
} | |
} | |
const num = {} | |
num[5] = 5 | |
num[2] = 2 |
This file contains 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:8.3-apache | |
ARG DOCKER_APP_UID | |
ARG DOCKER_APP_GID | |
ENV LANG en_US.UTF-8 | |
ENV LANGUAGE en_US:en | |
ENV LC_ALL C.UTF-8 | |
RUN apt-get update && apt-get install -y \ |
OlderNewer