We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73faa04 commit bad4783Copy full SHA for bad4783
Dockerfile
@@ -1,13 +1,13 @@
1
FROM homebrew/ubuntu24.04:latest
2
3
-ENV TIMEZONE "Europe/Warsaw"
4
-ENV DEBIAN_FRONTEND noninteractive
+ENV TIMEZONE="Europe/Warsaw"
+ENV DEBIAN_FRONTEND="noninteractive"
5
6
# Setup time zones.
7
RUN sudo ln -snf "/usr/share/zoneinfo/$TIMEZONE" /etc/localtime && \
8
echo $TIMEZONE | sudo tee /etc/timezone
9
10
-ENV DOCKERIZED true
+ENV DOCKERIZED=true
11
12
# Configure dotfiles.
13
COPY ./scripts/setup.sh /tmp/setup.sh
scripts/common/ansible/roles/neovim/tasks/darwin.yaml
@@ -1,8 +1,7 @@
---
-
- name: "install"
community.general.homebrew:
- state: head
+ state: present
name:
- - 'luajit'
- - 'neovim'
+ - "luajit"
+ - "neovim"
0 commit comments